Query Results
19 |
In [1]:
proc sql;
select count(*)
from sashelp.class;
Out[1]:
In [2]:
create table foo as
select * from sashelp.class;
Out[2]:
In [3]:
select *
from foo;
quit;
Out[3]: